home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Apple II / Essentials / Essentials.sea / File.Type.Notes / FTN.E0.800A < prev    next >
Encoding:
Text File  |  1993-06-15  |  5.2 KB  |  108 lines  |  [TEXT/GEOL]

  1. Apple II
  2. File Type Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6. File Type:       $E0 (224)
  7. Auxiliary Type:  $800A
  8.  
  9. Full Name:       Replicator document
  10. Short Name:      Replicator document
  11.  
  12. Written by:      Josef W. Wankerl & Matt Deatherage                  May 1992
  13.  
  14. Files of this type and auxiliary type contain images for the disk duplicating
  15. application Replicator.
  16. _____________________________________________________________________________
  17.  
  18. Replicator is a commerical, desktop-based disk duplicating application
  19. available from GS+ Magazine.
  20.  
  21. For more information on Replicator or GS+ Magazine, contact:
  22.  
  23.                    GS+ Magazine
  24.                    P.O. Box 15366
  25.                    Chattanooga, TN  37415-0366
  26.                    Attention:  Replicator Technical Support
  27.                    (615) 843-3988
  28.  
  29.                    America   Online: GSPlusDiz
  30.                    Delphi:   GSPlusDiz
  31.                    GEnie:    JWANKERL
  32.                    Internet: jwankerl@pro-gonzo.cts.com
  33.  
  34.  
  35. FILE FORMAT
  36.  
  37. A Replicator file is an extended file with an empty data fork.  The resource
  38. fork should contain the following resources:
  39.  
  40. Res Type  Resource ID   Contents       Description
  41. -----------------------------------------------------------------------------
  42.  $0001    $00000001     Bytes          The disk image, as read with a DRead
  43.                                        GS/OS call.
  44.  $0002    $00000001     Long           The block count of the disk, as
  45.                                        returned by a GS/OS Volume call.
  46.  $0003    $00000001     Word           The block size of the disk, as
  47.                                        returned by a GS/OS Volume call.
  48.  $0004    $00000001     Word           Corresponds to the state of the
  49.                                        Replicator disk window's "Number of
  50.                                        copies" radio buttons.  If this word
  51.                                        is zero, the "Mass copy" radio button
  52.                                        is selected; otherwise, the "Number of
  53.                                        Copies" radio button is selected.
  54.  $8006    $00000001     String         Name of the disk volume as returned by
  55.  rPString                              a GS/OS Volume call, with spaces on
  56.                                        both sides of the name, as Replicator
  57.                                        uses this string in a window title.
  58.  $8006    $00000002     String         Name of the file system the disk was
  59.  rPString                              formatted with.  You can use the
  60.                                        fileSysID GS/OS returns to match the
  61.                                        name of the file system to those
  62.                                        returned by GetFSTInfo.
  63.  $8006    $00000003     String         Textual representation of the block
  64.  rPString                              count.
  65.  $8006    $00000004     String         Textual representation of the block
  66.  rPString                              size.
  67.  $8016    $00000001     Bytes          The number of copies to make.
  68.  rText                                 Replicator inserts this text into the
  69.                                        "number of copies" Line Edit control
  70.                                        in the disk window.
  71.  $8029    $00000001     Bytes          The minimum version of Replicator
  72.  rVersion                              necessary to read this document.  The
  73.                                        only defined version is 1.0.  The
  74.                                        non-version fields of the rVersion
  75.                                        resource should be set so the Finder
  76.                                        displays "Requires Replicator
  77.                                        <version>".
  78.  $802A    $00000001     Bytes          Any comments to place in the
  79.  rComment                              "Comments" TextEdit box in the disk
  80.                                        window, and also shown by the Finder
  81.                                        in "Icon Info."  This resource is
  82.                                        optional.
  83.  
  84. As an example, a Replicator document of a 128K ProDOS RAM disk named ":RAM5",
  85. set to make five copies with "Mass copy" turned off and containing no comments
  86. would contain the following resources:
  87.  
  88.  Res Type         Resource ID   Content Description
  89.  ---------------------------------------------------------------------------
  90.  $0001            $00000001     $00020000 (131072) bytes of disk image data.
  91.  $0002            $00000001     $00000100 (256 blocks)
  92.  $0003            $00000001     $0200 (512 bytes per block)
  93.  $0004            $00000001     $0001 (Mass copy turned off)
  94.  $8006 (rPString) $00000001     " :RAM5 "
  95.  $8006 (rPString) $00000002     "ProDOS"
  96.  $8006 (rPString) $00000003     "256"
  97.  $8006 (rPString) $00000004     "512"
  98.  $8016 (rText)    $00000001     "5"
  99.  $8029 (rVersion) $00000001     1.0 (release)
  100.  
  101.  
  102. Further Reference
  103. _____________________________________________________________________________
  104.  
  105.    o   GS/OS Reference
  106.    o   Apple IIgs Technical Note #76, Miscellaneous Resource Formats
  107.  
  108.